enum table in laravel

37

$table->enum('difficulty', ['easy', 'hard']);
$table->enum('priority', ['normal', 'medium', 'high'])->default('normal');
php artisan make:enum UserType

Comments

Submit
0 Comments